home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
MacTech 1 to 12
/
MacTech-vol-1-12.toast
/
Source
/
MacTech® Magazine
/
Volume 04 - 1988
/
04.06 Jun 88
/
icon source
/
StdPoll.pas
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Pascal/Delphi Source File
|
1987-09-25
|
395 b
|
30 lines
|
[
TEXT/EDIT
]
{$A+} { Interlinear source on compile to .asm }
{$R+} { Range checking }
unit StdPoll;
INTERFACE
uses
MacIntf;
var
Done : Boolean; { program is all done }
procedure InitTheMac;
IMPLEMENTATION { -------------------------------------------------------- }
procedure InitTheMac;
begin
InitGraf (@ThePort);
InitFonts;
InitWindows;
InitMenus;
TEInit;
InitDialogs (NIL) end;
end.